ReadStandardKeyValueRepo

interface ReadStandardKeyValueRepo<Key, Value> : Repo

Functions

Link copied to clipboard
abstract suspend fun contains(key: Key): Boolean
Link copied to clipboard
abstract suspend fun count(): Long
Link copied to clipboard
abstract suspend fun get(k: Key): Value?
Link copied to clipboard
abstract suspend fun keys(pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>
abstract suspend fun keys(v: Value, pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>
Link copied to clipboard
abstract suspend fun values(pagination: Pagination, reversed: Boolean = false): PaginationResult<Value>

Inheritors

ReadKeyValueCacheRepo
Link copied to clipboard
StandardKeyValueRepo
Link copied to clipboard
ReadMapKeyValueRepo
Link copied to clipboard
MapKeyValueRepo
Link copied to clipboard
MapperReadStandardKeyValueRepo
Link copied to clipboard
MapperStandardKeyValueRepo
Link copied to clipboard
KtorReadStandardKeyValueRepo
Link copied to clipboard
KtorStandartKeyValueRepo
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Extensions

withMapper
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> ReadStandardKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadStandardKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadStandardKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadStandardKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadStandardKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadStandardKeyValueRepo<FromKey, FromValue>